home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / python / maclibnx.lha / time.h < prev   
Encoding:
C/C++ Source or Header  |  1993-08-14  |  293 b   |  19 lines

  1. /* Include file for localtime emulator.
  2.    Public domain by Guido van Rossum, CWI, Amsterdam (July 1987). */
  3.  
  4. struct tm {
  5.     int tm_sec;
  6.     int tm_min;
  7.     int tm_hour;
  8.     int tm_mday;
  9.     int tm_mon;
  10.     int tm_year;
  11.     int tm_wday;
  12.     /*
  13.     int tm_yday;
  14.     int tm_isdst;
  15.     */
  16. };
  17.  
  18. struct tm *gmtime(), *localtime();
  19.